home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr09 / savngs10.zip / README.FIL < prev    next >
Text File  |  1993-06-18  |  8KB  |  370 lines

  1.  
  2.  
  3.  
  4.  
  5.  
  6.  
  7.                    ------------------------------------------
  8.  
  9.                               INVESTMENT WITHDRAWAL
  10.  
  11.                                     Ver. 1.0
  12.  
  13.  
  14.                       (c) Copyright Peter L. Fishback 1992
  15.  
  16.                    ------------------------------------------
  17.  
  18.  
  19.  
  20.  
  21.  
  22.                                                     Peter L. Fishback
  23.                                                     P.O. Box 635
  24.                                                     Vienna, VA 22183
  25.  
  26.  
  27.  
  28.  
  29.          The INVESTMENT WITHDRAWAL program is copyrighted; however,
  30.          you may make unmodified copies of the INVESTMENT WITHDRAWAL
  31.          program and documentation for your own use.
  32.  
  33.          Complete documentation, including source BASIC code, is
  34.          available for registered users of this program.  Registered
  35.          users may modify the source code for their own personal use.
  36.  
  37.  
  38.  
  39.  
  40.                                License Agreement
  41.  
  42.  
  43.          You have a non-transferable, non-exclusive license to the
  44.          INVESTMENT WITHDRAWAL program, subject to the terms and
  45.          conditions of this License Agreement.  As a non-registered
  46.          user you may not modify, or alter the program in any manner,
  47.          or combine it with other programs.
  48.  
  49.          The program and its documentation are copyrighted; however
  50.          you may make archival copies of the program for your
  51.          personal use.
  52.  
  53.          The program is provided "as is" without warranty of any kind,
  54.          whether express or implied, including (but not limited to),
  55.          any implied warranties of merchantability or fitness for a
  56.          particular purpose.  Peter L. Fishback does not warrant that
  57.          the functions contained in the program will meet the user's
  58.          requirements or that the operation of the program will be
  59.          uninterrupted or error free.  The entire risk as to the
  60.  
  61.  
  62.  
  63.  
  64.  
  65.  
  66.  
  67.  
  68.  
  69.  
  70.          quality and performance of the program is with the user.
  71.          Should the program prove defective, the user assumes the
  72.          entire cost of all necessary servicing, repair, or correction.
  73.  
  74.          In no event will Peter L. Fishback be liable to the user for
  75.          any damages, including any lost profits, lost savings, damages
  76.          to other software or data, or other direct, incidental, or
  77.          consequential damages arising out of the use or inability to
  78.          use the program.
  79.  
  80.          If the user transfers possession of any copy, modification,
  81.          or merged portion of the program to another party without the
  82.          express written consent of Peter L. Fishback, then the user's
  83.          license is automatically terminated.
  84.  
  85.  
  86.  
  87.  
  88.  
  89.  
  90.                               Description of Files
  91.  
  92.  
  93.          The program consists of the following files:
  94.  
  95.  
  96.                     a.bat     Batch file to commence operation.
  97.  
  98.               savings.exe     Executable program file.
  99.  
  100.                readme.fil     File containing this material.
  101.  
  102.  
  103.  
  104.          The program's source code is in BASIC and was compiled with
  105.          BASIC 7.0, (c) Copyright Microsoft Corporation 1982 - 1989.
  106.  
  107.          The program will run under MS-DOS and PC-DOS, Versions 2.0
  108.          or later.
  109.  
  110.  
  111.  
  112.  
  113.  
  114.  
  115.  
  116.  
  117.  
  118.  
  119.  
  120.  
  121.  
  122.  
  123.          MS-DOS is a registered trademark of the Microsoft Corporation.
  124.          PC-DOS is a registered trademark of the International Business
  125.                              Machines Corporation.
  126.  
  127.  
  128.                                        2
  129.  
  130.  
  131.  
  132.  
  133.  
  134.  
  135.  
  136.                              INVESTMENT WITHDRAWAL
  137.  
  138.  
  139.          This program shows the effect of inflation and taxes on
  140.          systematic withdrawals from an investment fund.  You select
  141.          the percent of income earned to be withdrawn and the program
  142.          will determine the amount which must be withdrawn monthly to
  143.          maintain purchasing power or the purchasing power of
  144.          withdrawals if the withdrawal amount remains fixed.
  145.  
  146.  
  147.  
  148.  
  149.  
  150.          *   Program operation is commenced by                       *
  151.          *                                                           *
  152.          *            entering   A   then   <carriage return>.       *
  153.  
  154.  
  155.  
  156.          Ctrl-C will terminate program operation.
  157.  
  158.          <Enter> or <ArrowDn> will advance the cursor to the
  159.          next field.
  160.  
  161.          <ArrowUp> will move the cursor to the previous field.
  162.  
  163.          <f10> will advance the program to the next screen.
  164.  
  165.          <PgDn> will move you back to the previous screen.
  166.  
  167.          <Del> will set a data field to zero.
  168.  
  169.  
  170.  
  171.  
  172.  
  173.  
  174.  
  175.  
  176.  
  177.  
  178.  
  179.  
  180.  
  181.  
  182.  
  183.  
  184.  
  185.  
  186.  
  187.  
  188.  
  189.  
  190.  
  191.  
  192.  
  193.  
  194.                                        3
  195.  
  196.  
  197.  
  198.  
  199.  
  200.  
  201.  
  202.          MAIN SCREEN DATA ENTRY
  203.  
  204.  
  205.               Principal Balance                $ _ , _ _ _ , _ _ _
  206.  
  207.  
  208.               Annual Inflation                                 _ _  %
  209.  
  210.               Yield Over Inflation                             _ _  %
  211.  
  212.  
  213.               Income Tax Rate                                  _ _  %
  214.  
  215.  
  216.               Income to Withdraw                               _ _  %
  217.  
  218.  
  219.  
  220.  
  221.  
  222.  
  223.  
  224.  
  225.  
  226.  
  227.  
  228.  
  229.  
  230.  
  231.  
  232.  
  233.  
  234.  
  235.  
  236.  
  237.  
  238.  
  239.  
  240.  
  241.  
  242.  
  243.  
  244.  
  245.  
  246.  
  247.  
  248.  
  249.  
  250.  
  251.  
  252.  
  253.  
  254.  
  255.  
  256.  
  257.  
  258.  
  259.  
  260.                                        4
  261.  
  262.  
  263.  
  264.  
  265.  
  266.  
  267.  
  268.                                  Registration
  269.  
  270.  
  271.          To become a registered user of this program, complete
  272.          the registration form, and send it along with a check
  273.          for $10 payable to Peter L. Fishback, to:
  274.  
  275.  
  276.                              Peter L. Fishback
  277.                              P.O. Box 635
  278.                              Vienna, Virginia 22183
  279.  
  280.  
  281.  
  282.          1. Registered users will receive double density
  283.             disks containing the following files:
  284.  
  285.  
  286.              savereg.exe    Executable program file.  The registered
  287.                             version has the following additional
  288.                             program features:
  289.  
  290.                                    Color (VGA, EGA, CGA)
  291.  
  292.                                    Printout of Data
  293.  
  294.  
  295.  
  296.             savereg .bas    BASIC source code in ASCII files for
  297.             calcreg .bas    both the shareware and registered
  298.             calc2reg.bas    versions of the program.  The
  299.             savings .bas    code can be compiled with the
  300.             calc    .bas    Microsoft Corporation's QuickBASIC 4.x
  301.             calc2   .bas    and BASIC 7.x PDS.
  302.  
  303.  
  304.             manual.doc      Printer ready, ASCII text file containing
  305.                             documentation for the program.  Document-
  306.                             ation consists of an explanation of the
  307.                             program's workings, a description of data
  308.                             input (including limits) and output, a
  309.                             data input sheet, and sample applications
  310.                             to illustrate how the program works.
  311.  
  312.  
  313.          2. Registered users will receive notification of all
  314.             revisions to the program (to download executable program
  315.             files), for three years.  Registered users may order new
  316.             registered user's disks for $3.00.
  317.  
  318.  
  319.          3. Registered users are licensed to modify the source code
  320.             for their own use.
  321.  
  322.  
  323.  
  324.  
  325.  
  326.                                        5
  327.  
  328.  
  329.  
  330.  
  331.  
  332.  
  333.  
  334.          REGISTRATION FORM
  335.  
  336.          INVESTMENT WITHDRAWAL
  337.  
  338.  
  339.  
  340.  
  341.          Date       __________________
  342.  
  343.  
  344.  
  345.  
  346.          Name       ______________________________________
  347.  
  348.  
  349.          Address    ______________________________________
  350.  
  351.  
  352.                     ______________________________________
  353.  
  354.  
  355.                     ______________________________________
  356.  
  357.  
  358.  
  359.  
  360.  
  361.          Check One:    5.25" Disk  ___      3.5" Disk  ___
  362.  
  363.  
  364.  
  365.  
  366.  
  367.          From which BBS / Shareware Group did you obtain this program?
  368.  
  369.  
  370.          ______________________________________________________________